Description |
---|
This small macro forces a manual recompute of the model. Sometimes the user applies changes to the model in FreeCAD. But FreeCAD does not seem to recognize them. (As of introduced in version 0.17 the effect of this macro can be achieved through GUI. Right-click project in model tree view, and pick "Mark to recompute" from context menu. After that, press Recompute button.) Macro version: 1.0 Last modified: 2014-09-01 FreeCAD version: All Download: ToolBar Icon Author: shoogen |
Author |
shoogen |
Download |
ToolBar Icon |
Links |
Macros recipes How to install macros How to customize toolbars |
Macro Version |
1.0 |
Date last modified |
2014-09-01 |
FreeCAD Version(s) |
All |
Default shortcut |
None |
See also |
None |
Sometimes when a user applies changes to the model, FreeCAD does not seem to recognize/integrate them. In addition to that, the blue Refresh/Recompute button remains greyed out. Hence this small macro was designed to force a manual recompute of the model.
Note: As of version 0.17 and above the effect of this macro can be achieved through the GUI. Right-click project in model tree view, and pick Mark to recompute from the context menu. What this does is make the Refresh/Recompute icon active again. Now press on the Refresh/Recompute button to trigger a recompute.
Run the macro when necessary.
Macro Force_Recompute.py
# -*- coding: utf-8 -*- # Force Recompute # macro provided by shoogen import FreeCAD for obj in FreeCAD.ActiveDocument.Objects: obj.touch() FreeCAD.ActiveDocument.recompute()